Dapper Plus Reduce your data saving time by up to 99%.



Downloads:
4224228
Worldwide Customers:
2000+

Read Testimonials

What's Dapper Plus?

What's Dapper Plus?

Dapper Plus extends your IDbConnection with high-performance bulk operations: BulkInsert, BulkUpdate, BulkDelete, BulkMerge, and more.

Do you offer a free trial?

Do you offer a free trial?

We offer monthly trial, you can download a new trial every month.

Where can I find online examples?

Where can I find online examples?

Online examples are now available!

Online Examples

Supported Providers

SQL Server
SQL Azure
PostgreSQL
SQLite
MySQL

Main Features

Bulk Extensions

Use our bulk extensions methods to reduce your saving time by up to 99%.

// Easy to use
connection.BulkInsert(products);

// Easy to customize
connection.UseBulkOptions(options => options.InsertIfNotExists = true)
    .BulkInsert(products);
Try Online Example

Bulk Actions

Use our 100% FREE single extension methods to code faster and safer.

// Easy to use
connection.SingleInsert(products[0]);

// Easy to customize
connection.UseBulkOptions(options => options.InsertIfNotExists = true)
    .BulkInsert(products[1]);
Try Online Example

100+ Options

Save your entities your way with over 100 customizable options available.

DapperPlusManager.Entity<Product>()
 .Table("Product")
 .Identity(x => x.ProductID)
 .UseBulkOptions(x => x.InsertIfNotExists = true);
 
connection.BulkInsert(products);
Try Online Example